home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 December / Chip_1999-12_cd.bin / zkuste / MacOS / FILES / MARI.SIT / Mariner 4.0 folder / MarinerÆ 4.0.rsrc / STR#_551.txt < prev    next >
Text File  |  1999-10-25  |  2KB  |  58 lines

  1. TRUNC(n,d)
  2. Returns n rounded down to the decimal places specified in d. Regardless of sign, TRUNC rounds towards zero.
  3.  
  4. SQRT(n)
  5. Returns the positive square root of n.
  6.  
  7. SUM(n1,n2,n3...)
  8. Returns the sum of the numeric values in a list of arguments.
  9.  
  10. SIGN(n)
  11. Returns a value describing the sign of n. If n is positive, SIGN returns 1. If n is zero, SIGN returns 0. If n is negative, SIGN returns -1.
  12.  
  13. ROUNDUP(n,d)
  14. Returns n rounded up to the decimal places specified in d. Regardless of sign, ROUNDUP rounds away from zero.
  15.  
  16. ROUNDDOWN(n,d)
  17. Returns n rounded down to the decimal places specified in d. Regardless of sign, ROUNDDOWN rounds towards zero.
  18.  
  19. ROUND(n,d)
  20. Returns n rounded to the decimal places specified in d.
  21.  
  22. RAND
  23. Generates a random number greater than or equal to 0 and less than 1.
  24.  
  25. PRODUCT(n1,n2,n3...)
  26. Multiplies the numeric values in a list of arguments.
  27.  
  28. ODD(n)
  29. Returns n rounded up to the nearest odd integer.
  30.  
  31. MOD(n,d)
  32. Calculates the modulus (remainder) after n is divided by d. The result will have the same sign as d.
  33.  
  34. LOG10(n)
  35. Returns the base 10 or common logarithm of n.
  36.  
  37. LOG(n,b)
  38. Returns the logarithm of n to b (base).
  39.  
  40. LN(n)
  41. Returns the natural logarithm of n.
  42.  
  43. INT(n)
  44. Returns the largest integer less than or equal to n.
  45.  
  46. EXP(n)
  47. Returns the base of the natural logarithm e (2.716...) raised to the power of n.
  48.  
  49. EVEN(n)
  50. Returns n rounded up to the nearest even integer.
  51.  
  52. CONVERT(n,Unit1,Unit2)
  53. Returns n converted from one measurement system to another.
  54.  
  55. ABS(n)
  56. Returns the absolute value or positive form of n.
  57.  
  58.